home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / earthlink / nscomm / java40.jar / java / lang / StringIndexOutOfBoundsException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-03  |  560 b   |  15 lines

  1. package java.lang;
  2.  
  3. public class StringIndexOutOfBoundsException extends IndexOutOfBoundsException {
  4.    public StringIndexOutOfBoundsException() {
  5.    }
  6.  
  7.    public StringIndexOutOfBoundsException(String var1) {
  8.       super(var1);
  9.    }
  10.  
  11.    public StringIndexOutOfBoundsException(int var1) {
  12.       super("String index out of range: " + var1);
  13.    }
  14. }
  15.